* Returns: %TRUE. The return value is deprecated and %FALSE will only be
* returned for backwards compatibility reasons if an @error is not
* %NULL and a loading error occured. To track errors while loading
- * CSS, connect to the GtkCssProvider::parsing-error signal.
+ * CSS, connect to the #GtkCssProvider::parsing-error signal.
**/
gboolean
gtk_css_provider_load_from_data (GtkCssProvider *css_provider,
* Returns: %TRUE. The return value is deprecated and %FALSE will only be
* returned for backwards compatibility reasons if an @error is not
* %NULL and a loading error occured. To track errors while loading
- * CSS, connect to the GtkCssProvider::parsing-error signal.
+ * CSS, connect to the #GtkCssProvider::parsing-error signal.
**/
gboolean
gtk_css_provider_load_from_file (GtkCssProvider *css_provider,
* Returns: %TRUE. The return value is deprecated and %FALSE will only be
* returned for backwards compatibility reasons if an @error is not
* %NULL and a loading error occured. To track errors while loading
- * CSS, connect to the GtkCssProvider::parsing-error signal.
+ * CSS, connect to the #GtkCssProvider::parsing-error signal.
**/
gboolean
gtk_css_provider_load_from_path (GtkCssProvider *css_provider,
* gtk_css_provider_load_from_resource:
* @css_provider: a #GtkCssProvider
* @resource_path: a #GResource resource path
+ * @error: return location for an error
*
* Loads the data contained in the resource at @resource_path into
* the #GtkCssProvider, clearing any previously loaded information.
*
- * If there is an error locating the resource or parsing the CSS,
- * then the program will be aborted.
+ * To track errors while loading CSS, connect to the
+ * #GtkCssProvider::parsing-error signal.
*
* Since: 3.16
*/
{
GFile *file;
gchar *uri, *escaped;
- GError *error;
g_return_if_fail (GTK_IS_CSS_PROVIDER (css_provider));
g_return_if_fail (resource_path != NULL);
file = g_file_new_for_uri (uri);
g_free (uri);
- if (!gtk_css_provider_load_from_file (css_provider, file, &error))
- g_error ("Failed to load CSS: %s", error->message);
+ gtk_css_provider_load_from_file (css_provider, file, NULL);
g_object_unref (file);
}